home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / xmu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-24  |  936 b   |  32 lines

  1. /* Compatibility routines based on code from the MIT Xmu library */
  2.  
  3. /* Synched up with: Not in FSF. */
  4.  
  5. #ifdef HAVE_XMU
  6.  
  7. # include <X11/Xmu/CharSet.h>
  8. # include <X11/Xmu/Converters.h>
  9. # include <X11/Xmu/CurUtil.h>
  10. # include <X11/Xmu/Drawing.h>
  11. # include <X11/Xmu/Error.h>
  12.  
  13. /* Do the EDITRES protocol if running X11R5 (or later) version */
  14. #if (XtSpecificationRelease >= 5) 
  15. /* #### No dice if we don't have XMU until someone ports
  16.    _XEditResCheckMessages to xmu.c */
  17. #define HACK_EDITRES
  18. #include <X11/Xmu/Editres.h>
  19. #endif /* R5+ */
  20.  
  21. #else
  22.  
  23. int XmuCursorNameToIndex (const char *name);
  24. int XmuReadBitmapDataFromFile (const char *filename, unsigned int *width,
  25.                                unsigned int *height, unsigned char **datap,
  26.                                int *x_hot, int *y_hot);
  27. int XmuPrintDefaultErrorMessage (Display *dpy, XErrorEvent *event, FILE *fp);
  28. void XmuCopyISOLatin1Lowered (char *, CONST char *);
  29.  
  30. #endif
  31.  
  32.